body {
    font-family: 'Poppins', sans-serif;
  }

.login-container {
    min-height: 100vh;
  }
  
  .login-row {
    min-height: 100vh;
  }
  
  .login-image {
    position: relative;
    background: url('../images/background3.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    overflow: hidden;
  }
  
  .login-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .overlay-content {
    position: relative;
    z-index: 2;
    top: 20%;
    padding: 20px;
  }
  
  .login-form {
    width: 90%;
    max-width: 400px;
  }


  .login-form img{
   max-width: 25%;
  }

  .login-form h3{
   font-size: 23px;
   font-weight: bold;
   color: #1558a9;
  }

  .login-form p {
    font-size: 15px;
    font-weight: 400;
  }
  
  .custom-input {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size:13px;
    font-weight: 500;
    color: #0a0a0a;
  }
  
  .custom-btn {
    background-color: #2c78d6;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 500;
  }
  
  .custom-btn:hover {
    background-color: #1138b6;
  }
  
  .separator {
    text-align: center;
    position: relative;
    color: #999;
  }
  
  .separator::before,
  .separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ccc;
  }
  
  .separator::before {
    left: 0;
  }
  
  .separator::after {
    right: 0;
  }
  
  .google-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 50px;
    font-weight: 500;
  }
  
  .apple-btn {
    background-color: #0a0a0a;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-weight: 500;
  }
  
  .help-text {
    font-size: 13px;
    color: #666;
  }
  
  .help-text a {
    color: #009975;
    text-decoration: none;
  }

  .toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
  }

  .logo-mobile .img-mobile{
    max-width: 100%;
  }

  /* @media only screen and (max-width: 400px) {
    .login-form img {
      display: none;
  }
  } */
  
  /* @media only screen and (min-width: 600px) {
    .logo-mobile .img-mobile {
      display: none;
  }
  } */
  
  