﻿#tela-login .head {
    display: flex;
    background-color: #ffff;
}
#login .cadastrese {
    font-family: "Mulish-Light";
	color: black !important;
}
#tela-login {
    /*background-image: url(../../imagens/v2/fundo-login.jpg);*/
	background-color:rgba(33,150,243,1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
	min-height:100vh;
}

#tela-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    z-index: 1;
}

#tela-login > * {
    position: relative;
    z-index: 2;
}

#tela-login .head {
    display: flex;
    background-color: #ffff;
}

#login .head {
    display: flex;
    background-color: #ffff;
}

#login {
	margin-top:6em;
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 1em;
}

#login p {
    margin: 0;
}

#login .login-card {
    background-color: rgb(255 255 255 / 85%);
    border-radius: 25px;
    /*width: 350px;*/
    padding: 30px 30px;
}

.logo-so {
    width: 175px;
}

#login .titulo {
    font-size: 1.75rem;
    font-family: "Mulish-SemiBold" !important;
    color: #1b3d58;
}

#login .texto {
    font-family: "Mulish-Regular";
    font-size: 1rem;
    color: #666;
}

#login .bt-logar {
    font-family: 'Mulish-Bold';
    font-weight: bold;
    font-size: 18px;
    padding: 7px 0px;
}


.input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.form-control {
    width: 100%;
    padding-right: 40px;
    padding: 0.2rem 0.75rem !important;
}


#senha .btn-toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

#senha .btn-toggle-password i {
    pointer-events: none;
}


#senha btn {
    padding: .375rem .75rem;
    border-left: none;
}

#senha .btn-eyes {
    display: flex;
    border-left: none;
    border-right: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    background-color: #ffff;
    outline: none;
    padding: 0.2rem 0.75rem;
    border-radius: 0 0.375rem 0.375rem 0;
    height: 33px;
}

#senha .btn-eyes:focus {
    border-color: none;
}

#senha .bi-eye {
    font-size: 18px;
}

#senha .btn-eyes.valid {
    border-right: 1px solid #28a745;
    border-top: 1px solid #28a745;
    border-bottom: 1px solid #28a745;
    border-left: none;
    padding: 0.23rem 0.75rem;
}

body {
    background-color: #ffff;
}

.box-fluido {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.selogue-index {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/imagens/banner-login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.login-card {
    background-color: #fff;
    border-radius: 12px;
}

#login .bt-logar {
    background-color: #1b3d58 !important;
}

#login .bt-logar:hover {
    background-color: #284f6d !important;
}

#login .cadastrese {
    font-family: "Mulish-Light";
}

#login .cadastrese:hover {
    color: #009FC2;
}

#login .mensagem-alert {
    color: red;
    font-family: "Mulish-SemiBold";
    font-size: 14px;
}

#login .duvida {
    font-family: "Mulish-Light";
    font-size: 12px;
    cursor: pointer;
}


@media (max-width: 992px) {
    #login {
        justify-content: center;
    }
}



@media (max-width: 450px) {
    .login-card {
        padding: 30px 25px;
    }

    #login {
        justify-content: center;
    }
}


@media (min-width: 375px and max-width: 450px) {
    .login-card {
        width: 355px;
        padding: 30px 25px;
    }

    #login {
        justify-content: center;
    }
}



/*Animação para troca de tela*/

/* Animação de saída */
.fade-enter {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estado ativo da animação de saída */
.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Animação de entrada (para a nova página) */
.fade-exit {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-exit-active {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
