html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure html and body cover the full height necessary */
    background: linear-gradient(to bottom, #AD9AE9, #FFFFFF); /* Background gradient applied here */
    font-family: 'Lexend Deca', sans-serif;
    color: #333;
    display: flex;
}

.wrapper {
    flex: 1; /* Takes available space, allowing the content to expand */
    justify-content: center;
    align-items: center; /* Center content both vertically and horizontally */
}

.login-container {
    text-align: center;
}

.logo {
    height: 250px;
    margin-bottom: -20px;
}

.login-box {
    width: 250px;
    background-color: #F6F5EE;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-input {
    background-color: white;
    width: 90%;
    margin-bottom: 10px; /* Adjust for the last input if necessary */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-button {
    width: 95%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #8BB536;
    color: white;
    font-size: 18px;
    font-weight: bold;
}
