body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0f7fa; /* Light blue (ice blue) */
    backdrop-filter: blur(10px);
}

.login-box {
    width: 350px;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px; /* Increased font size */
    font-weight: normal; /* Normal font weight */
    color: #333; /* Dark gray color */
}

.login-box input {
    border: none;
    border-bottom: 2px solid #ced4da;
    outline: none;
    box-shadow: none;
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 20px;
}

.login-box input:focus {
    border-bottom: 2px solid #007bff;
}

.login-box button {
    width: 100%;
}
