﻿/*-- BACKGROUND IMAGE --*/
body {
    background-image: url('/Image/img-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-login {
    padding: 7em 5em 7em 5em;
    border-radius: 100px;
    background: var(--LIGHT);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    width: 580px;
    max-width: fit-content;
}

.text-head-red {
    color: var(--PRIMARY);
    font-weight: 700;
}

.text-management {
    color: var(--DARK);
    font-weight: 400;
}

.btn-login {
/*    background-color: var(--PRIMARY);*/
    color: var(--LIGHT);
    background: linear-gradient(90deg, #BA161C 0%, #400204 100%);
    width: 100%;
}

@media screen and (min-width: 0px) and (max-width:990px) {
    .card-box {
        flex-direction: column !important;
    }

    .card-box-img {
        margin-bottom: 0px !important;
    }

    .card-box-login {
        margin-top: 1em !important;
    }

    .img-Cartoon {
        display: none;
    }
}

@media screen and (min-width: 0px) and (max-width:650px) {
    .card-login {
        padding: 4em 2em 4em 2em;
        border-radius: 70px;
    }
}

.card-img {
    width: 500px;
    text-align: center;
}

.card-box-login, .card-box-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow: hidden;
}
