body {
    background: linear-gradient(to bottom, #3498db, #8e44ad);
    height: 100vh;
    /* Center the content */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Remove margin and padding */
    margin: 0;
    padding: 0;
    /* Set text color to white for better visibility */
    color: white;
    /* Additional styles for font and text can be added here */
}
.logo {
    position: absolute;
    max-width: 650px;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.login-container {
    background: rgba(255, 255, 255);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 350px;
    z-index: 1;
}

.login-form h2 {
    color: #495057;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.login-form input {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 25px;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    box-sizing: border-box;
    font-size: 16px;
    color: #495057;
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #80bdff;
    border-color: #80bdff;
}

button {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background: #0056b3;
}

.options {
    margin-top: 25px;
    text-align: center;
}

.options a {
    text-decoration: none;
    color: #007bff;
    margin: 0 10px;
    font-size: 14px;
}

.options a:hover {
    text-decoration: underline;
}
