.login-container{ 
    overflow-y: hidden;
}

.login-container .form-control, .login-container .form-control:focus {
  box-shadow: none;
  outline: 0;
}

.login-btn{
    background: #B41B1D 0% 0% no-repeat padding-box;
    color: #fff;
    border: none;
    border-radius: 4px;
    height: 46px;
    font: normal normal 600 16px/22px Open Sans;
}

.login-btn:hover{
    background: #fff 0% 0% no-repeat padding-box;
    color: #B41B1D;
    border: 2px solid #B41B1D;
}

.login-btn:disabled {
    background: #F0F0F0 0% 0% no-repeat padding-box;
    border-radius: 4px;
    font: normal normal 600 14px/18px 'Open Sans';
    color: #7A7A7A;
    border: none;
    height: 35px;
}

.acceptBtn{
    background: #B41B1D 0% 0% no-repeat padding-box;
    color: #fff;
    border: none;
    border-radius: 4px;
    height: 46px;
    font: normal normal 600 16px/22px Open Sans;
}

.acceptBtn:hover{
    background: #fff 0% 0% no-repeat padding-box;
    color: #B41B1D;
    border: 2px solid #B41B1D;
}

.acceptBtn:disabled {
    background: #F0F0F0 0% 0% no-repeat padding-box;
    border-radius: 4px;
    font: normal normal 600 14px/18px 'Open Sans';
    color: #7A7A7A;
    border: none;
    height: 35px;
}


/* p{
font: normal normal normal 14px/16px Open Sans;
} */

.custom-hr {
   border-width: 4px;
   border-color: #000 !important;
   opacity: 1;
   border-radius: 2px;
}

.form-control:focus{
    border-color:#07579F !important; 
}

.form-check-input[type="checkbox"] {
  margin-top: 6px;
}

.form-group {
    position: relative;
  }
  
.floating-input {
  padding: 10px 14px; 
}
  
  .floating-label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    background-color: white;
    padding: 0 4px;
    opacity: 0;
  }
  
  .floating-input:focus + .floating-label,
  .floating-input:not(:placeholder-shown) + .floating-label {
    top: 0.1rem;
    left: 0.5rem;
    font-size: 0.75rem;
    color: #07579F;
    opacity: 1;
  }
  
  .otp-input-wrapper input.otp-input {
    width: 40px;
    height: 45px;
    font-size: 20px;
    border: 1px solid #ccc;
  }
  
  .otp-input:focus {
    border-color: #07579F;
    outline: none;
  }
  
  .dark-mode {
    margin-block-start: 26px !important;
    padding-block-start: 26px !important;
  }

  .resendBtn{
    background: #F0F0F0 0% 0% no-repeat padding-box;
  border-radius: 4px;
  font: normal normal 600 14px/18px 'Open Sans';
  color: #7A7A7A;
  border: none;
  height: 35px;
  }

  .snackbar {
    visibility: hidden;
    min-width: 280px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 4px;
    padding: 14px 16px;
    position: fixed;
    z-index: 999;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font: normal normal 500 14px/18px 'Open Sans';
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
  }
  
  .snackbar.show {
    visibility: visible;
    opacity: 1;
  }

  