﻿.btn-entrar {
    background-color: #9c1222;
    border-color: #9c1222;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    line-height: 1.8;
    box-shadow: 0 4px 16px rgba(156, 18, 34, 0.2);
}

    .btn-entrar:hover {
        background-color: #eee;
        border-color: #eee;
        color: #9c1222;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(156, 18, 34, 0.3);
        text-shadow: 0 1px 3px rgba(156, 18, 34, 0.3);
    }

    .btn-entrar span {
        transition: transform 0.25s ease;
    }

    .btn-entrar:hover span {
        transform: scale(1.2);
    }

    .btn-entrar:focus,
    .btn-entrar:active,
    .btn-entrar:focus-visible {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
        background-color: #bbb !important;
        color: #444 !important;
        transform: translateY(1px);
        box-shadow: 0 2px 6px rgba(156, 18, 34, 0.3);
    }

.card {
    background-color: #fff;
    border-radius: 10px !important;
    box-shadow: 0 4px 16px rgba(156, 18, 34, 0.2) !important;
}

.card-header {
    border: none;
    background-color: #fff;
    border-radius: 10px !important;
    box-shadow: 0 4px 16px rgba(34, 34, 34, 0.2);
    width: 90%;
    margin: 0 auto;
}

.bg-primary {
    background-color: #f9f9f9 !important;
}

#tituloLogin {
    color: #9c1222;
    font-weight: 600 !important;
    font-size: 20px !important;
    margin-top: 8px;
}

.labelbox {
    color: #9c1222;
    font-weight: 500;
}

.checkbox:checked {
    background-color: #9c1222;
}

#forgot-password {
    color: #222;
}

#novaConta {
    color: #222;
}

.form-check-label {
    margin-left: 1.5rem;
}

.form-check-input {
    accent-color: #9c1222;
}

    
    .form-check-input:checked {
        accent-color: #9c1222; 
    }