/* =========================[ SIGNIN PAGE LAYOUT ]========================= */


.signin-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.signin-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
    gap: 30px;
}

.signin-divider {
    width: 1px;
    background-color: #ddd;
}

.signin-logo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #1a80e4, #23d18b);
}

.signin-logo {
    max-width: 70%;
    height: auto;
}



/* =========================[ RESPONSIVE - MOBILE ]========================= */
@media (max-width: 768px) {
    .signin-container {
        flex-direction: column;
        height: auto;
    }

    .signin-form-section,
    .signin-logo-section {
        flex: none;
        width: 100%;
        padding: 30px;
    }

    .signin-divider {
        display: none;
    }

    .signin-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {

    .signin-container {
        flex-direction: column;
        height: 100vh; /* Occupy full viewport */
    }

    .signin-form-section {
        flex: none;
        width: 100%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .signin-form-section form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .signin-divider {
        display: none;
    }

    /* Logo section grows to fill remaining space */
    .signin-logo-section {
        flex: 1;
        width: 100%;
        padding: 0;
    }

    .signin-logo {
        max-width: 60%;
    }

    .signin-form-section button {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        min-height: 48px;
        border-radius: var(--radius-tiny);
        justify-content: center;
    }

    .signin-form-section button i {
        margin-right: 8px;
        font-size: 14px;
    }
}
