body{
  background-color:#FFFFFF;
}
 #login-main{
   position: relative;
   top:-10px;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 90vh;
   /* border:solid 1px red; */
 }

.login-wrapper {
    background: white;
    max-width: 800px;
    width: 70vw;
    height:100%;
    display: flex;
    /* flex-direction:column; */
    justify-content: center;
    align-items: flex-start;
    /* border:solid 1px red; */
  }

.login-container {
  margin-top:50px;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  width: 400px;
  /* border:solid 1px red; */
}

.footer-text {
  /* display:flex; */
  display:none;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  width: 30vw;
  height:100%;
  background: linear-gradient(-135deg,#000000,#01013D, #0097FB, #002877,#000000,#01013D,#01013D,#01013D, #002877, #000000);
}

  .login-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: #1a1a1a;
  }

  .login-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;

    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .form-group input:focus {
    outline: none;
    border-color: #004E92;
  }

  .btn-login {
    width: 100%;
    padding: 0.875rem;
    background: #1D61E7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;

    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .btn-login:hover {
    background: #001a4d;
  }

.btn-login:disabled{
  opacity: 0.5;
  background: grey;
  cursor: not-allowed;
}



  .copyright {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.password-toggle:hover {
  opacity: 1;
}

.password-toggle .show {
  display: none;
}

.password-toggle .hide {
  display: inline;
}

.password-toggle.showing .show {
  display: inline;
}

.password-toggle.showing .hide {
  display: none;
}



/* Styles for screens up to 767px (typical mobile devices) */
@media only screen and (max-width: 767px) {
.footer-text{
  display:none;
}
#login-main{
     position: relative;
     top:80px;
     display: block;
     height: 90vh;
     /* border:solid 1px red; */
   }
.login-wrapper {
    background: white;
    max-width: auto;
    width: 100%;
    height:auto;
    /* border:solid 1px red; */
  }
.login-container {
    margin-top:30px;
    background: white;
    padding: 4px;
    border-radius: 12px;
    width: 90%;
    /* border:solid 1px red; */
  }
  
}
