/* =========================[ 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%;
    }
}