/* =========================================
signin-page-design
========================================= */

.signin-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-section .signin-card {
    border: 1px solid #00000024;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.080);
    border-radius: 3%;
}

@media (max-width: 768px) {
    .signin-section {
        width: 100%;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .signin-section .signin-card {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}