
.auth-form-container {
	margin: 0 auto;
	padding: 60px;
	background-color: #1b70a1;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	color: #fff;
  }

  .auth-h1 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 36px;
	color: #ffffff;
  }

  .auth-form {
	display: flex;
	flex-direction: column;
  }

  .auth-label {
	margin-bottom: 5px;
	font-size: 18px;
	display: block;
  }

  .auth-input {
	padding: 10px;
	border: none;
	border-radius: 5px;
	margin-bottom: 20px;
	font-size: 16px;
	color: black;
	width: 100%;
  }

  .auth-input:focus
  {
    border: 4px solid #0477b9;
    outline: #1b70a1;
  }

  .auth-submit-button {
	padding: 10px;
	background-color: #007bff;
	color: #fff;
	border: none;
	width: 100%;
	border-radius: 5px;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.2s ease-in-out;
  }

  .auth-submit-button:hover {
	background-color: #01438a;
  }

  .error-container {
    text-align: center;
  }
  
    .error-message {
      font-size: 36px;
      color: #17a2b8;
      font-weight: bold;
  }
  
    .error-animation {
      position: relative;
      font-size: 200px;
      color: #17a2b8;
      line-height: 1;
  }
  
    .error-animation span {
      display: inline-block;
      animation: bounce 1s infinite;
    }
  
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-30px);
      }
      60% {
        transform: translateY(-15px);
      }
    }
  
  .custom-badge-danger {
      background-color: #ff0101; /* Lighter shade of red */
      border-radius: 3px;
      color:white;
    }
  
  .custom-badge-orange {
    background-color: #ff5b00; /* Lighter shade of red */
    border-radius: 3px;
    color:white;
  }
  
  .custom-badge-warning {
      background-color: #ffff00; /* Lighter shade of yellow */
      border-radius: 3px;
    }
  
  .custom-badge-success {
      background-color: #9af168; /* Lighter shade of green */
      border-radius: 3px;
    }
  
    .custom-badge-success-2 {
      background-color: #3d9e05; /* Lighter shade of green */
      border-radius: 3px;
      color:white;
    }
  
  .custom-badge {
      padding: 6px 10px;
      margin: 3px;
  }


  [aria-label][tooltip-position] {
    position: relative;
    letter-spacing: 0.1rem;
  }
  
  [aria-label][tooltip-position]::before,
  [aria-label][tooltip-position]::after {
    --scale: 0;
    position: absolute;
    font-size: 1rem;
    transition: transform 100ms;
    transition-timing-function: linear;
  }
  
  [aria-label][tooltip-position]:hover::before,
  [aria-label][tooltip-position]:hover::after {
    --scale: 1;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.45, 1.93);
  }
  
  [aria-label][tooltip-position]::before {
    content: attr(aria-label);
    background-color: #80d0c7;
    padding: 0.5em;
    border-radius: 0.3em;
    width: max-content;
    max-width: 200px;
    text-align: center;
    transform: scale(0);
  }
  
  [aria-label][tooltip-position]::after {
    content: "";
    border: var(--arrow-size) solid transparent;
  }
  
  [aria-label][tooltip-position]::before,
  [aria-label][tooltip-position]::after {
    --tooltip-color: #80d0c7;
    --arrow-size: 0.5rem;
    --scale: 0;
  
    z-index: 1;
    font-size: 1rem;
    transform: translate(var(--translate-x), var(--translate-y))
      scale(var(--scale));
  }
  
  /** Left */
  
  [aria-label][tooltip-position="left"]::before {
    --translate-x: calc(-100% - var(--arrow-size));
    --translate-y: -50%;
    left: 0px;
    top: 50%;
    transform-origin: right center;
  }
  
  [aria-label][tooltip-position="left"]::after {
    --translate-x: calc(-1 * var(--arrow-size));
    --translate-y: -50%;
    left: 0px;
    top: 50%;
    border-left-color: var(--tooltip-color);
    transform-origin: right center;
  }
  
  
  /** Left */
  
  [aria-label][tooltip-position="left"]::before {
    --translate-x: calc(-100% - var(--arrow-size));
    --translate-y: -50%;
    left: 0px;
    top: 50%;
    transform-origin: right center;
  }
  
  [aria-label][tooltip-position="left"]::after {
    --translate-x: calc(-1 * var(--arrow-size));
    --translate-y: -50%;
    left: 0px;
    top: 50%;
    border-left-color: var(--tooltip-color);
    transform-origin: right center;
  }
  