/* Agent Responsive Stylesheet */

@media (max-width: 1200px) {
    /* Styles for Desktops & Laptops */
    html body #container .form-wrapper {
        padding: 0 2rem;
    }
    html body #container .form {
        padding: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    /* Styles for Tablets and Small Laptops */
}

@media (max-width: 767.98px) {
    /* Apply mobile layout structure for all screens under 768px */
    html body .container::before,
    html body #container.container.sign-in::before,
    html body #container.container.sign-up::before {
        height: 100vh;
        width: 100%;
        left: 0;
        right: 0;
        border-radius: 0;
        z-index: 0;
        transform: none;
    }

    html body #container.container.sign-in .col.sign-in,
    html body #container.container.sign-up .col.sign-up {
        transform: translateX(-50%) translateY(-50%);
    }

    html body #container .content-row {
        align-items: flex-start;
        justify-content: center;
        height: auto;
    }

    html body #container .content-row .col {
        width: 100%;
        text-align: center;
        position: static;
        background-color: transparent;
        transform: none;
    }

    html body #container .col {
        width: calc(100% - 40px);
        left: 50%;
        top: 50%;
        position: absolute;
        padding: 2rem;
        background-color: var(--white);
        border-radius: 2rem;
        transform: translateX(-50%) translateY(100%);
        transition: 1s ease-in-out;
    }

    html body #container .col:empty {
        display: none;
    }

    html body #container .row {
        align-items: flex-end;
        justify-content: flex-end;
    }

    html body #container .form-wrapper {
        padding: 0;
    }

    html body #container .form,
    html body #container .social-list {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

    html body #container .text {
        margin: 3rem auto 0 auto;
        text-align: center;
        width: 100%;
    }

    html body #container .text p {
        display: none;
    }

    html body #container .text h2 {
        margin: 0;
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    /* Styles for Mobile Portrait */
}
