body {
    font-family: 'Figtree', sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.container {
    width: 80%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header {
    font-family: 'Kalam', cursive;
    font-size: 5rem;
    margin-bottom: 2rem;
}
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.form-container {
    flex: 1;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 4rem;
    text-align: left;
}
.image-container {
    flex: 1;
    max-width: 400px;
    text-align: center;
    margin: 4rem;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.image-container p {
    font-family: 'Asap', sans-serif;
    margin-top: 1rem;
    font-size: 1rem;
    color: #4a5568;
}
.form-container label {
    color: black;
}
@media (prefers-color-scheme: dark) {
    .form-container input {
        background: white;
        color: black;
        border-color: #c6c6c6;
    }

    .form-container button {
        background: #2d3748;
        color: white;
    }

    .form-container button:hover {
        background: #4a5568;
    }

    #remember_me_checkbox, #forgot_password, #new_here {
        color: #2d3748;
    }

    #new_here a {
        color: #2d3748;
    }

    #already_registered {
        color: #2d3748;
    }
}
