
body {
    background-color: #f8f9fa;
}

.login-container {
    max-width: 100%;
    margin: 0px;
}

.login-form {
    background-color: #ffffff;
    padding: 80px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.or-divider {
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.or-divider hr {
    flex: 1;
    border-color:  #6b6969;
}

.or-divider span {
    margin: 0 10px;
}

.btn-b {
    width: 358px; 
    height:52px;
    margin:0;
}

.btn-login {
    background-color: #959595;
    color: #fff;
    transition: background-color 1.5s ease-in-out !important;
    padding: 12px 20px 12px 20px !important;
}

.btn-social{
    background-color: #fff;
    color: #000;
    transition: background-color 1.5s ease-in-out !important;
    padding: 12px 20px 12px 20px !important;
}

.btn-b:hover {
    background-color: #003c77 !important;
    color: #fff;
}

.image-container {
    text-align: center;
    margin-top: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.form-control:focus {
    box-shadow: none;
    /* Remove box shadow */
    border-color: #ced4da;
    /* Change border color to default */
}

.button-container {
    width: 60%;
    /* Set your desired width */
    margin: 0 auto;
    /* Center the div */
}

.error-message {
    color: red;
    margin-top: 5px;
  }

  .input-error {
    border: 1px solid red;
  }
  
@media (max-width: 767px) {
  .row {
      flex-direction: column-reverse;
  }

  .button-container {
      width: 100%;
  }
}