
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
    font-family: Times New Roman, serif;
}
.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px; /* Make corners more oval */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    font-family: Times New Roman, serif;
}
.login-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
    font-family: Times New Roman, serif;
    font-size: 1.5rem; /* Increase the size of the heading */
}
.login-container .input-box {
    margin-bottom: 1rem;
}
.login-container .input-box input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 12px; /* Make corners more oval */
    font-size: 1rem;
    font-family: Times New Roman, serif;
    font-size: 1.2rem; /* Increase the size of the input text */
}
.login-container .button {
    text-align: center;
}
.login-container .button input {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 12px; /* Make corners more oval */
    background-color: #000; /* Change button color to black */
    color: #fff; /* Change text color to white */
    font-size: 1rem;
    cursor: pointer;
    font-family: Times New Roman, serif;
    font-size: 1.2rem; /* Increase the size of the button text */
}
.login-container .button input:hover {
    background-color: #333; /* Change hover color to dark grey */
}
.login-container .toggle {
    text-align: center;
    margin-top: 1rem;
    font-family: Times New Roman, serif;
    font-size: 1.2rem; /* Increase the size of the toggle label */
}
.alert {
    margin-top: 1rem;
}
.profile-image {
    margin-bottom: 1rem;
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Make image circular */
}
