/* =========================[ SIGNUP PAGE LAYOUT ]========================= */

.signup-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.signup-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
    gap: 30px;
}

.signup-divider {
    width: 1px;
    background-color: #ddd;
}

.signup-logo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #1a80e4, #23d18b);
}

.signup-logo {
    max-width: 70%;
    height: auto;
}

/* =========================[ RESPONSIVE - MOBILE ]========================= */
@media (max-width: 768px) {

    .signup-container {
        flex-direction: column;
        height: 100vh; /* Occupy full viewport */
    }

    .signup-form-section {
        flex: none;
        width: 100%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .signup-form-section form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .signup-divider {
        display: none;
    }

    /* Logo fills remaining space */
    .signup-logo-section {
        flex: 1;
        width: 100%;
        padding: 0;
    }

    .signup-logo {
        max-width: 60%;
    }

    .signup-form-section button {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        min-height: 48px;
        border-radius: var(--radius-tiny);
        justify-content: center;
    }

    .signup-form-section button i {
        margin-right: 8px;
        font-size: 14px;
    }
}
