﻿/* Fonts */
@font-face {
    font-family: 'Roboto-Light';
    src: url('../Fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('../Fonts/Roboto-Medium.ttf') format('truetype');
}




/*=========================================================================*/




/* Styles Padrao */
.center-column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.center-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row
}

.botaoActionPadrao {
    width: 100%;
    max-width: 10rem;
    text-align: center;
    max-width: 4rem;
    font-size: .8rem;
    background: var(--Botao-action-padrao-bg);
    color: var(--Botao-action-padrao-color);
    border-radius: 19px;
    cursor: pointer;
    margin-right: .2rem
}

.botaoSecondPadrao {
    width: 100%;
    max-width: 10rem;
    text-align: center;
    background: var(--Botao-second-padrao-bg);
    color: var(--Botao-second-padrao-color);
    border-radius: 1rem;
    border: solid 1px;
    padding: 2px 2px;
}


.botaoPrimaryPadrao {
    width: 100%;
    max-width: 10rem;
    text-align: center;
    background: var(--Botao-primary-padrao-bg);
    color: var(--Botao-primary-padrao-color);
    border-radius: 1rem;
    border: solid 1px;
    padding: 2px 2px;
}


.botaoDangerPadrao {
    width: 100%;
    max-width: 10rem;
    text-align: center;
    background: var(--Botao-danger-padrao-bg);
    color: var(--Botao-danger-padrao-color);
    border-radius: 1rem;
    border: solid 1px;
    padding: 2px 2px;
}


.botaoSuccessPadrao {
    width: 100%;
    max-width: 10rem;
    text-align: center;
    background: var(--Botao-success-padrao-bg);
    color: var(--Botao-success-padrao-color);
    border-radius: 1rem;
    border: solid 1px;
    padding: 2px 2px;
}


.aviso-container {
    position: fixed;
    width: 100%;
    max-width: 25rem;
    background: #fff;
    top: 5%;
    z-index: 100;
    left: calc(33%);
    border-radius: 7px;
    padding: .8rem;
    min-height: 7rem;
    box-shadow: 2px 3px 10px -8px;
}

.aviso-cabecalho {
    display: flex;
    align-items: center;
    background: #fff0c3;
    padding: 0rem .2rem;
    margin-bottom: .5rem;
}


    .aviso-cabecalho img {
        width: 100%;
        max-width: 2rem;
        margin-right: 1rem;
    }

    .aviso-cabecalho span {
        font-size: 1.3rem;
        font-weight: 500;
    }


.aviso-img-close {
    width: 100%;
    max-width: 1.8rem;
    position: absolute;
    right: -.6rem;
    top: -.8rem;
    cursor: pointer;
    background: radial-gradient(white, transparent 75%);
}

/*=========================================================================*/


/* Styles de Setting */
* {
    padding: 0;
    margin: 0;
    font-family: Roboto-Light
}

body {
    min-height: 100vh;
    background: var(--Login-bg);
}

main {
    margin-top: -1rem
}


.container-login {
    min-height: 100vh
}

.row-login {
    min-height: 100vh
}


.icone-login {
    width: 100%;
    max-width: 22rem
}

.nome-projeto {
    margin-top: -2.5rem;
    font-weight: 600;
}

/*=========================================================================*/
/* Form Login */
.container-form-login {
    width: 100%;
    max-width: 400px;
    max-height: 30rem;
    height: 100vh;
    min-height: 15rem;
    border-radius: 20px;
    padding: 2rem;
    padding-top: 4rem;
}

.glass-effect {
    background: rgb(126 126 126 / 25%);
    border: 1px solid rgb(255 255 255 / 49%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.titulo-login {
    font-size: 3rem
}

.campo-login {
    width: 100%;
    border: none;
    padding: .2rem .5rem;
    border-radius: 6px;
}

.botaoPrimaryPadrao {
    padding: 1px 2px;
    font-weight: bold;
    font-size: 1.3rem;
    border: none;
    max-width: 14rem;
}
/*=========================================================================*/





/* Responsividade */
@media(max-width:992px) {

    .icone-login {
        max-width: 15rem;
    }

    .row-login {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .container-form-login-fundo {
        width: 100%;
        align-items: center !important;
        margin-top: 3rem;
    }

    #sct_aviso
    {
        display:flex;
        justify-content:center;
        align-items:center;
        width:100%;
    }

    .aviso-container
    {
        left:auto;
    }


    @media(max-width: 450px) {

        .aviso-container
        {
            max-width:95%
        }

        .icone-login {
            max-width: 10rem;
        }

        .nome-projeto
        {
            margin-top:-1.5rem;
        }

        .container-form-login
        {
            margin-top: -1.5rem
        }

        .aviso-img-close {
            background: radial-gradient(white, transparent 65%);
        }
    }

}
/*=========================================================================*/




