/*
	Project: Psicologar;
	Year:  2021;
*/


/* IDs */

#logo-container {
    max-height: 9vh;
}

#logo-login {
    max-width: 300px;
    width: 100%;
}

#imgLogin {
    max-width: 100vh;
    width: 75%;
    height: 60%;
}


/* Classes */

.principal {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 2;
}

.bg-circle {
    width: 100vw;
    height: 100vh;
    position: absolute;
    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: #fff;
    border-radius: 50%;
}

.feedback-valid::before{
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-color: #fff;
    position: absolute;
    top: 35px;
    padding: 0 5px;
    font-size: 20px;
    right: 10px;
}

.feedback-invalid{
    font-size: 12px;
    margin-left: 5px;
}

.placeholder-danger::placeholder{
    color: #d9534f;
}

.feedback-invalid::before{
    content: "\f071";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-color: #fff;
    position: absolute;
    top: 35px;
    padding: 0 5px;
    font-size: 20px;
    right: 10px;
}

@media (max-width: 767.98px) {
    body{
        display: flex;
        flex-direction: column;
    }

    .inputsLogin {
        width: 100% !important;
    }

    .principal, .bg-circle {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative;
    }

    .form-row{
        padding: 0 25px;
    }

    .principal{
        margin-top: 25px;
    }

    .bg-circle{
        height: 120px !important;
    }

    .circle{
        position: relative;
        transform: translate(-2vw,-90vw);
        width: 200vw !important;
        min-width: 200vw !important;
        height: 100vw !important;
        min-height: 100vw !important;
    }
}