.content {
    align-items: center;
    justify-content: center;

}

.card {
    flex-direction: row;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.box h2 {
    margin: 0 0 2rem;
    padding: 0;
    color: #fff;
    text-align: center;
}

.card {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 500px;
}

.form-section {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.logo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(3, 233, 244, 0.3));
}

.form-section button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #0297c0;
    color: var(--normal-text-color);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-section button:hover {
    background: var(--interactive-color);
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    color: white;
}

.signup-link a {
    color: var(--interactive-text-color);
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


/* =================================== */
/* Form Options */
/* =================================== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #03e9f4; /* Matches your color scheme */
}

.remember-me label {
    color: #8c9ba5; /* Subdued text color */
    font-size: 1rem;
}

.forgot-password {
    color: #03e9f4;
    text-decoration: none;
    font-size: 1rem;
}

.forgot-password:hover {
    text-decoration: underline;
}



/* =================================== */
/* Interactive Screen */
/* =================================== */
@media (max-width: 1200px) {
    .card {
        flex-direction: column;
        min-height: auto;
    }

    .form-section,
    .logo-section {
        padding: 10px;
    }

    .logo-section {
        order: -1;
        background: none;
    }

    .logo {
        max-width: 200px;
    }

    .forgot-password, .remember-me label {
        font-size: 1.2rem;
    }

}

@media (max-width: 400px) {


    .forgot-password, .remember-me label {
        font-size: 1.4rem;
    }

}