@import '../css/fonts.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --dark: #000000;
    --gray: #BCBCBC;

    --border-radius: 40px;
    --box-shadow: 0 0 40px rgba(0, 0, 0, .25);
    --background: rgba(172, 52, 55, 1);
    --background-linear: linear-gradient(298.41deg, #305986 7.13%, #AC3437 73.81%, #FEEE17 99.23%);
    
}

.app {
    position: relative;
    min-height: 100vh;
    padding: 20px 0;
    background: var(--background-linear);
}

.form-content {
    position: relative;
    max-width: 960px;
    width: 960px;
    height: 576px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    overflow: hidden;
}

.form-content_info {
    background: url('../../../img/auth/onda.svg') no-repeat;
    background-size: cover;
    background-position: right;
    width: 50%;
    height: 100%;
}

.form-content_info-title {
    color: var(--white);
    font-weight: 800;
}

.form-content_info-icons img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.form-content_login {
    width: 50%;
}

.form-content_login .form {
    width: 280px;
}

.form-content_login .form .form-logo_title {
    font-weight: 700;
}


@media(max-width: 990px) {
    .app {
        padding: 0;
    }

    .form-content {
        flex-direction: column;
        height: initial;
        min-height: 100vh !important;
        border-radius: 0;
    }

    .form-content_login,
    .form-content_info {
        position: relative;
        width: 100%;
    }

    .form-content_info {
        padding: 30px 0 60px 0;
    }

    .form-content_login {
        padding: 10px 0 30px 0;
    }

    .form-content_info {
        background: var(--background-linear) !important;
    }

    .form-content_info-logo img {
        width: 50px;
        object-fit: cover;
    }

    .form-content_info-title {
        font-weight: 500;
        font-size: 1.3rem;
    }

    .form-content_info-icons img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .form-content_login::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 30px;
        top: -30px;
        left: 0;
        background-color: var(--white);
        border-radius: 35px 35px 0 0;
    }
}
