body {
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,rgb(194, 223, 247),hsla(0, 0.00%, 98.80%, 0.94),rgb(191, 221, 247));
    background-size: 300% 300%;
    animation: gradientAnimation 6s ease infinite;
  }
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .container_v1 {
    display: flex;
    width: 80%;
    max-width: 1200px;
    height: 70%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: absolute;
  
  }

  /* Left Section (Image/Animation) */
  .left-section_v1 {
    flex: 1;
    /* background: url('/static/img/login_img.png') no-repeat center center/cover; */
  }

  /* Right Section (Login Form)  login_img.png*/
  .right-section_v1 {
    flex: 1;
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    
  }

  .login-form_v1 {
    width: 100%;
    max-width: 400px;
    margin-top: 4%;
  }

  .login-form_v1 h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
  }

  .form-group_v1 {
    margin-bottom: 1.5rem;
    position: relative;
  }

  .form-group_v1 label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
  }

  .form-group_v1 input {
    width: 75%;
    padding: 0.5rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    /* font-size: 1rem; */
  }

  .form-group_v1 i {
    position: absolute;
    left: 10px;
    top: 70%;
    transform: translateY(-50%);
    color: #5592e2;
    font-size: 14px;
  }
  .form-group_v1 input::placeholder{
    color: #00000048;
    font-size: 12px;
  }
  .form-group_v1 ::-ms-value{
    color: #00000048;
    font-size: 12px;
  }

  .form-group_v1 input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 5px rgba(79, 172, 254, 0.5);
  }

  .login-btn_v1 {
    width: 100%;
    display: grid;
    padding: 10px;
    background: #0c78ff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    margin: auto;
    align-items: end;
    transition: background 0.3s;
  }

  .login-btn_v1:hover {
    background: #008cba;
  }

  .forgot-password_v1 {
    display: block;
    /* text-align: center; */
    margin-top: 1rem;
    font-size: 11px;
    color: #0c78ff;
    text-decoration: none;
    margin-left: auto;
  }

  .forgot-password_v1:hover {
    text-decoration: underline;
  }


  #forgot-password-modal_v1 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


  @media (max-width: 768px) {
    .container_v1 {
      flex-direction: column;
      height: auto;
      
    }

    .left-section_v1 {
      height: 200px;
    }
    #background_image{
      display: none;
    }

    .right-section_v1 {
      padding: 2rem 1.5rem;
    }
    .form-group_v1 input {
        width: 100%;
        padding:  0.5rem 2.5rem;
        border:1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
        /* font-size: 1rem; */
    }
    
  }




  /* Modal container_v1_v1_v1_v1 */
#forgot-password-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Maximum width */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Heading */
.modal-content h2 {
    margin-top: 0;
    font-size: 24px;
    
    color: #333;
}

/* Paragraph */
.modal-content p {
    margin-top: revert;
    color: #666;
}

/* Label */
.modal-content label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    margin-top: 20px;
}

/* Input */
.modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 2%;
    border: 1px solid cadetblue;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Button */
.modal-content .btn {
    display: block;
    width: 32%;
    margin: 4% auto 0;
    padding: 10px;
    background-color: #5cb85c;
    color: white;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.modal-content .btn:hover {
    background-color: #4cae4c;
}


#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    color: rgb(31, 32, 32);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background:
    conic-gradient(from 135deg at top,currentColor 90deg, #0000 0) 0 calc(50% - 4px)/17px 8.5px,
    radial-gradient(farthest-side at bottom left,#0000 calc(100% - 6px),currentColor calc(100% - 5px) 99%,#0000) top right/50%  50% content-box content-box,
    radial-gradient(farthest-side at top        ,#0000 calc(100% - 6px),currentColor calc(100% - 5px) 99%,#0000) bottom   /100% 50% content-box content-box;
  background-repeat: no-repeat;
  animation: l11 1s infinite linear;
}
@keyframes l11{ 
  100%{transform: rotate(1turn)}
}

.typewriter {
    display: block;
    font-family: cursive;
    white-space: nowrap;
    overflow: hidden;
    font-size: 16px;
    
    /* border-right: 0.15em solid black; */
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.typewriter:nth-child(2) {
    animation-delay: 4s;
}

.typewriter:nth-child(3) {
    animation-delay: 8s;
}
#birthday {
    font-weight: bolder;
    position: relative;
    font-size: 22px;
    color: white;
    
    background: linear-gradient(90deg, #ff8a00, #e52e71, #9b36b7, #ff8a00);
    background-size: 200% 200%;
    animation: gradientMove 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hbd{
    text-align: center;
}

.employee-name_v1 {
    display: block;
    font-size: 12px;
    font-weight: bold;
    
    color: #0c78ff;
    margin-top: 1rem;
  }


  input[type="password"]::-ms-reveal,
  input[type="password"]::-ms-clear,
  input[type="password"]::-webkit-inner-spin-button,
  input[type="password"]::-webkit-outer-spin-button {
      display: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
  }


  .password-container {
    position: relative;
    display: flex;
}

.toggle-password {
    position: absolute;
    right: 22px;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
}