/* Body Styling */
body {
    background: url('/assets/loginBgImg.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, sans-serif;
    width: 100%;
    height: 100%;
    overflow:hidden;
  }

  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(208, 236, 255, 0.5); /* Example of a semi-transparent black overlay */
    z-index: 1; /* Ensure it's on top of the background image but below other content */
  }

  /* color codes  */
  :root{
    --signi-Btn-color:#0050B1;
  }

  /* General Container Styling */
  .container {
    max-width: 500px;
    height: 100%;
    margin: 50px auto;
    padding: 20px;
  }
  .signin-btn{
    background: var(--signin-Btn-color) !important;
  }
  /* Form Container */
  .login-container,
  .signup-container,
  .otp-container,
  .forget-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 50px 15px;
  }

  /* Form Styling */
  .login-form,
  .signup-form,
  .otp-form,
  .forget-form {
    background-color: #ffffff;
    padding: 30px;
    height: 500px;
    position: relative;
    z-index: 1111;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Form Title */
  .login-form h2,
  .signup-form h2,
  .otp-form h2,
  .forget-form h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Form Field Styling */
  .form-control,
  .otp-input {
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }

  /* Focused Input Field */
  .form-control:focus,
  .otp-input:focus {
    border-color: #007bff;
    outline: none;
  }

  /* Button Styling */
  .btn-custom {
    width: 100%;
    padding: 10px;
    background-color:var(--signi-Btn-color) !important;
    color: white !important;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }

  .btn-custom:hover {
    background-color: #0056b3;
  }

  /* Link Styling */
  a {
    color: #007bff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* Alert Styling */
  .alert {
    /* display: none; */
    padding: 7px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    /* margin-bottom: 15px; */
  }

  /* Input Group for OTP */
  .otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  /* OTP Input Styling */
  .otp-input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .otp-input:focus {
    border-color: #007bff;
    outline: none;
  }

  /* Responsive Design */
  @media (max-width: 480px) {
    .container {
      padding: 10px;
    }

    .login-container,
    .signup-container,
    .otp-container,
    .forget-container {
      padding: 30px 10px;
    }

    .otp-input-group {
      flex-wrap: wrap;
      justify-content: space-around;
    }

    .otp-input {
      width: 35px;
      height: 45px;
      font-size: 16px;
    }
  }
