﻿body {
    background: #03385C;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: "Segoe UI", sans-serif;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    padding: 2.5rem 2rem;
    width: 500px;
    max-width: 400px;
    text-align: center;
}

.logo-prover-login img {
    width: 25rem;
    margin-bottom: 0.8rem;
    
    
}


.login-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #043c4a;
    font-weight: 600;
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem;
}

.btn-submit {
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    padding: 0.7rem;
}

    .btn-login:hover {
        background-color: #0069d9;
    }

.form-check-label {
    font-size: 0.9rem;
}

.forgot-password {
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 1rem;
    color: #007bff;
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.input-group-text{
    border-radius: 0.6rem;
}

.colaborator-register {
    font-size: 0.85rem;
    display: inline-block;
    color: #007bff;
    text-decoration: none;
}

.colaborator-span {
    font-size: 0.85rem;
    display: inline-block;
    color: #ffff;
    text-decoration: none;
}

.alert-error {
    background: #ffe6e6;
    border-left: 4px solid #d9534f;
    padding: 12px 14px;
    border-radius: 8px;
    color: #b92d2d;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1rem;
}

    .alert-error i {
        margin-right: 6px;
        font-size: 1rem;
    }


/* ESTADO INICIAL (fora da tela, à direita) */
.toast-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    z-index: 9999;
    opacity: 0;
    transform: translateX(30px); /* entra da direita */

    transition: opacity .5s ease, transform .5s ease;
}

    /* APARECENDO */
    .toast-custom.show {
        opacity: 1;
        transform: translateX(0); /* posição final */
    }

    /* SAINDO (vai para a ESQUERDA) */
    .toast-custom.hide {
        opacity: 0;
        transform: translateX(-20px); /* sai para a esquerda */
    }



/* SUCESSO (verde) */
.toast-success {
    background: #28a745; /* verde principal */
    border-left: 6px solid #1e7e34; /* tom mais escuro */
}

/* ERRO (vermelho) */
.toast-danger {
    background: #dc3545;
    border-left: 6px solid #b02a37;
}

/* AVISO (amarelo) */
.toast-warning {
    background: #ffc107;
    color: #212529; /* melhor contraste no amarelo */
    border-left: 6px solid #d39e00; /* amarelo mais escuro */
}

/* INFORMAÇÃO (azul) */
.toast-info {
    background: #0dcaf0;
    border-left: 6px solid #0aa0c8;
}

/* animação de saída */
.toast-custom.hide {
    opacity: 0;
    transform: translateX(20px);
}