﻿:root {
    --azulProfundo: #1F3C88;
    --azulProfundoHover: #0E2B77;
    --azulGelo: #A9CFFF;
    --azulGeloHover: #98BEEE;
    --branco: #F0F0F0;
    --turquesaVibrante: #55D6BE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    justify-content: center;
    align-items: center;
    background-image: url('../imagem/BGDesigner/fundoLogin.png');
    background-size: cover;
    background-position: center bottom; 
    background-repeat: no-repeat;
    height: 90vh; 
    margin: 0;
}

.body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.close-alert {
    position: absolute;
    right: -10px;
    top: -15px;
    border-radius: 15px;
    width: 30px;
    height: 31px;
}

.alert {
    padding: 10px !important;
}

.mensagem-popup {
    position: fixed;
    display: flex;
    left: 50%;
    top: 8%;
    width: 380px;
    z-index: 1080;
    margin-top: -30px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(-50%);
    }

    to {
        opacity: 0;
        transform: translateX(300px);
    }
}

.mensagem-popup .alert {
    animation: slideIn 1s forwards;
}

    .mensagem-popup .alert.slide-out {
        animation: slideOut 1s forwards;
    }

.login-container {
    background-image: url('../imagem/BGDesigner/loginMenor.png');
    background-position: center right; 
    background-repeat: no-repeat; 
    margin: 0; 
    padding: 20px 30px 10px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 380px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.Negado {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 10px;
    color: var(--azulProfundo);
    font-weight: bold;
}

p{
    color: var(--azulProfundo);
    margin-bottom:10px;
}

.form-check {
    align-items: center;
}
    .form-check-input {
        margin: 0;
    }

.form-control{
    border-radius: 15px;
    margin-bottom: 10px;
}
    .form-control.is-invalid {
        background-image: none;
    }

.invalid-feedback{
    margin: -10px 0 10px;
}

label {
    font-weight: bold;
    font-size: 14px;
    color: var(--azulProfundo);
}

.olho {
    position: absolute;
    right: 10px;
    top: 20%;
    cursor: pointer;
    user-select: none;
}
    .olho i{
        font-size: 25px;
        color: var(--azulProfundo);
    }

.form-floating:has(.is-invalid) .olho{
    top: 14%;
}

.input-group .text-danger{
    margin-bottom: 15px;
}

.progress {
    margin-bottom: 10px;
}

#feedbackin{
    width: 100%;
}

.btn-azul {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    background-color: var(--azulProfundo);
    color: white;
    transition: .5s;
}
    .btn-azul:hover {
        background-color: var(--azulProfundoHover);
        color: white;
        font-size: 22px;
    }

.btn-duplo {
    width: 49%;
    color: var(--azulProfundo);
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: .5s;
}
    .btn-duplo:hover {
        color: var(--azulProfundo);
        font-size: 16px;
    }

.btn-restauraSenha{
    margin-bottom: 10px;
}

.footer {
    margin-top: 5px;
    width: 100%;
    text-align: center;
}
    .footer label {
        color: white;
    }
    .footer a {
        margin: 10px;
        color: white;
    }
    .footer a:hover{
        color: var(--azulGelo);
    }