/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 4 de jul de 2022, 11:36:02
    Author : Alan Barroncas
*/


/*FOLHA DE ESTILO LOGIN USER*/


body {
    margin: 0;
    font-size: 13px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*LOGO*/
.logo-doc {
    max-width: 50% !important;
}


/* ESTILOS DO BOTÃO ENTRAR */
.buttonLoginSize{
    width: 70% !important;
}

.DefaultButton .ui-button-text {
    background-color: #6161C8;
}

.DefaultButton.ui-state-hover .ui-button-text, .DefaultButton.ui-state-focus .ui-button-text
{
    background-color: #7A7AF6 !important;
}

/*---------------------------------*/

.no-show {
    display: none;
}

/*---------------------------------*/

/*TOPO DA CAIXA DE LOGIN*/
.top-color{
    background-color: #6161C8;
}

/*---------------------------------*/

/*CAIXA DE LOGIN*/
.top-box-login{
    margin-top: 25%;
}

.marginLabel{
    margin-left: 14%;
    margin-right: 20%;
    width: 90%;
    padding: 10px;
}

.ui-inputfield.ui-state-hover, .ui-inputfield.ui-state-focus {
    border: 1px solid #7A7AF6 !important;
    color: #7A7AF6 !important;
    background-color: #F9FBFC;
}

.ui-widget .ui-state-focus, .ui-widget.ui-state-focus {
    box-shadow: 0px 0px 2px 1px rgba(122,122,246,1) !important;
}
.account-wall {
    margin-top: 20px;
    background-color: #f7f7f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

/*---------------------------------*/

/*INPUT LOGIN*/
.label-login {
    color: #555;
    font-size: 15px;
    border: #000;
}


/*SISTEMA DE GRID*/
.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

/*---------------------------------*/

/*IMAGEM A DIREITA*/
.img-box {
    width: 50%;
    height: 100%;
    /*background-color: #5bb4ff;*/
    /*padding: 20px;*/
    position: absolute;
    transform: translate(100%);
}

.img-box img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
/*---------------------------------*/

/*USER/PASSWORD ICONES*/
.ui-inputgroup-addon {
    position: relative;
    display: inline-block;
    top: 1px;
    left:0rem;
    cursor: pointer;
}

.ui-inputgroup-addon-user {
    position: relative;
    display: inline-block;
    top: 1px;
    left:0rem;
}


/* ------- RESPONSIVIDADE ----- */


@media (max-width: 960px){
    .img-box
    {
        display: none;
    }

    .account-wall {
        margin-top: 20%;
    }

    .Responsive50 {
        margin-left: 50% !important;
        margin-right: 0px !important;
    }
}

@media (max-width: 500px){
    .no-background {
        width: 150vw;
        margin-left: -24% !important;
        margin-top: 20%;
    }
}







