    body,
    html {
      height: 100%;
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #fff;
    }

    .login-container {
      display: flex;
      min-height: 100vh;
    }

    .login-left {
      background-color: #BF1E2D;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 20px;
    }
    .form-check-label{
      color: #322A22 !important; 
    }

    .login-left img {
      max-width: 200px;
      height: auto;
    }
    .form-control.is-invalid, .was-validated .form-control:invalid{
      background-image: none !important;
    }

    .login-right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .login-box {
      width: 100%;
      max-width: 420px;
    }
    .login-box .text-muted{
      color: #636363 !important;
      font-size: 18px;
    }
    .form-label {
      margin-bottom: .5rem;
      color: #322A22;
      font-weight: 500;
  }

    .social-media button {
      color: #322A22;
    }

    .login-box h3 {
      font-weight: bold;
      color: #322A22;
    }

    .btn-custom {
      background-color: #BF1E2D;
      color: #fff;
    }

    .form-control {
      height: 45px;
      font-size: 14px;
    }

    .btn-custom:hover {
      background-color: #9a1414;
      color: #fff;
    }

    .social-login button {
      width: 100%;
      margin-top: 10px;
    }

    /* otp */
.otp-inputs {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin: 20px 0;
    }

    .otp-inputs input {
      width: 60px;
      height: 60px;
      text-align: center;
      font-size: 24px;
      border: 1px solid #ddd;
      border-radius: 6px;
    }

    .btn-custom {
      background-color: #b71c1c;
      color: #fff;
    }

    .btn-custom:hover {
      background-color: #9a1414;
    }

    @media (max-width: 992px) {
      .login-container {
        flex-direction: column;
      }

    }



    @media (max-width: 768px) {
      .login-left img {
        max-width: 100px;
      }

      .w-50 {
        width: 100% !important;
      }

      .social-media {
        flex-direction: column;
      }

      .login-right {
        padding: 40px 10px;
      }
    }