/*
	Project: Psicologar;
	Year:  2021;
*/


/* IDs */

#logo-container {
    max-height: 9vh;
}

#logo-login {
    max-width: 300px;
    width: 100%;
}

#imgLogin {
    max-width: 100vh;
}


/* Classes */

.principal {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 2;
}

.bg-circle {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    background: var(--bg-principal);
}

.circle {
    min-width: 100vw;
    width: 100vh;
    height: 120vw;
    min-height: 120vh;
    position: absolute;
    right: -50vw;
    background-color: #f5f5f5 !important;
    border-radius: 50%;
}

/* @media (max-width: 767.98px) {
    .inputsLogin {
        width: 100vw !important;
        padding: 20px;
    }
    .circle {
        width: 200vw;
        height: 150vw;
        position: absolute;
        bottom: 10vh;
        left: -50vw;
        background-color: #fff;
        border-radius: 50%;
    }
}

@media (min-width: 768px) {
    .inputsLogin {
        padding-left: 50px;
    }
} */

@media (max-width: 767.98px) {
    body{
        display: flex;
        min-height: 100vh;
        flex-direction: column;
        justify-content: center;
    }

    .inputsLogin {
        width: 100% !important;
    }

    .principal, .bg-circle {
        display: block !important;
        width: 100% !important;
        position: relative;
    }

    .principal{
        margin: auto 0;
        height: 100% !important;
    }

    .bg-circle{
        height: 100%;
        height: 150px !important;
    }

    .circle{
        position: relative;
        transform: translate(-2vw,-90vw);
        right: 50vw;
        width: 200vw !important;
        min-width: 200vw !important;
        height: 100vw !important;
        min-height: 100vw !important;
    }
}