/* Container to center everything */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  form{
    height: 640px;
    width: 800px;
    /* background-color: rgba(161, 187, 161, 0.559); */
    background-color: rgba(131, 131, 131, 0.27);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}
form *{
    font-family:'Times New Roman', Times, serif;

    /* color: #ffffff; */
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

  /* Center label text */
  /* label {
    width: 60%;        
    margin: 12px 0;
    padding: 10px;
    color: #000;
    font-size: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto; 
    font-family:'Times New Roman', Times, serif;
  } */
  .form-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* input {
    width: 60%;        
    height: 10%;
    margin: 12px 0;
    padding: 10px;
    color: #000;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto; 
  } */
  .input-field {
    
    width: 60%;
    margin: 12px auto;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    font-size: 16px;
    height: 48px;        
}
.input-field1 {
    
  width: 20%;
  margin: 12px auto;
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 16px;
  height: 48px;        
}

.input-field i {
    color: #555;
    margin-right: 10px;
    font-size: 18px;
}

.input-field input {
    flex: 1; /* takes up remaining space */
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #000;
}

.input-field .bi {
    margin-left: 8px;
    font-size: 20px;
    color: #555;
}

  .login-btn {
    width: 60%;        /* Reduce width of input field */
    margin: 12px 0;
    padding: 10px;
    background: rgba(1, 72, 122, 0.775);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid #01487ac6;
    border-radius: 12px;
    font-size: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto; 
    margin-top: 50px;
  }
  .login-btn:hover{
    background: rgba(140, 192, 229, 0.775);
    color: rgba(0, 0, 0, 0.9);
  }
  /* .logintitle {
    color: rgb(235, 173, 58);
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    
  } */
  #title1-btn {
    display: inline-block; /* inline-block to allow width & margins */
    font-weight: 600;
    font-size: 32px;
    /* background: linear-gradient(to right, #13510c 0, #13510c 20%); */
    background: rgb(18, 69, 145);
    background-size: 200% auto;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    text-decoration: none;
    white-space: nowrap;
    font-family: Poppins, sans-serif;
}

/* Example animation keyframes; adjust for desired 'shine' effect */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}
