.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: url('/dashboard/imagens/loading.gif') 50% 50% no-repeat white;
}

.btn-blink {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: url('/dashboard/imagens/loading.gif') 50% 50% no-repeat white;
}

label {
    font-size: 0.8em;
    padding: -2px;
    color: #CCCCCC;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}
.form-label {
    color: #1a237e;
    font-weight: 500;
    font-size: 0.9rem;
}
.input-group-text {
    background: #e8eaf6;
    color: #1a237e;
    border-color: #c5cae9;
    border-radius: 0.5rem 0 0 0.5rem !important;
}
.form-control {
    border-color: #c5cae9;
}
.form-control:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.15);
}
.btn-submit {
    background: #2e7d32;
    color: white;
    border: none;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-submit:hover {
    background: #1b5e20 !important;
    transform: translateY(-2px);
}
.termos-link {
    color: #1a237e;
    text-decoration: underline;
    cursor: pointer;
}
#togglePassword {
    background: #e8eaf6;
    color: #1a237e;
    border-color: #c5cae9;
    cursor: pointer;
}