/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Times New Roman', Times, serif;
    background-image: url("../images/loginbg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color:white;
}
.login-container {
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    border:2px solid white;
}
h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}
.user-box {
    position: relative;
    margin-bottom: 20px;
}
.user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    outline: none;
}
.user-box label {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: 0.5s;
    color:white;
}
.btn-custom {
    background: #2196F3;
    color: #ffffff;
    padding: 15px 20px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}
.btn-custom:hover {
    background: #007bff;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2);
    color: white;
}

#information{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    
}
p{
    text-align: center;
    margin-top: 20px;
}


a{
    margin-top: 30px;
    text-decoration: none;
    color:white;
}

.user-box input:focus ~ label,
.user-box input:valid ~ label {
    top: -15px;
    font-size: 12px;
    color: black;
}

a:hover{
    color:black
}



@media only screen and (max-width: 768px) {
    .login-container {
        width: 80%;
        padding: 10px;
        /* height: 60vh; reduced height for small screens */
    /* }
}
@media(max-width:375px){
    #information{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
} */ 

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
  }
  
  form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0062cc;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
  }