/* Estilos customizados para o formulário LGPD */

.form-logo-header {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.form-logo-header img {
    max-width: 250px;
    height: auto;
}

.lgpd-form-header {
    background: linear-gradient(to left, #003366, #0055a4);
}

.lgpd-form-body {
    background: linear-gradient(45deg, #003366, #0055a4);
    color: white;
    position: relative; /* Necessário para o pseudo-elemento */
    overflow: hidden; /* Para conter o pseudo-elemento */
}

.lgpd-form-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('../../../../storage/img/logos/brasao01.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03;
    z-index: 0;
}

.lgpd-form-body > form {
    position: relative;
    z-index: 1;
}


.lgpd-form-body .form-label,
.lgpd-form-body .form-check-label,
.lgpd-form-body .card-title {
    color: white;
}

.lgpd-form-body .form-text {
    color: rgba(255, 255, 255, 0.7);
}

.lgpd-form-body hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.form-control-lgpd {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-radius: 0 !important;
    border: none !important;
    border-left: 2px solid #ced4da !important;
    border-bottom: 2px solid #ced4da !important;
    transition: all 0.3s ease;
}

.form-control-lgpd.textarea-lgpd {
    border-top: 2px solid #ced4da !important;
    border-right: 2px solid #ced4da !important;
}

.form-control-lgpd:focus {
    background-color: #ffffff !important;
    box-shadow: none !important;
    border-left-color: #007bff !important;
    border-bottom-color: #007bff !important;
}

.form-control-lgpd.textarea-lgpd:focus {
    border-top-color: #007bff !important;
    border-right-color: #007bff !important;
}

.form-control-lgpd::placeholder {
    color: #6c757d !important;
}

.btn-lgpd-submit {
    background: linear-gradient(to bottom, #ffffff, #e9ecef) !important;
    color: #003366 !important;
    font-weight: bold;
    border: 1px solid #c3c3c3 !important;
    border-radius: 5px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.btn-lgpd-submit:hover {
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transform: translateY(-2px);
}

.btn-lgpd-voltar {
    display: block;
    width: 100%;
    background-color: crimson;
    color: white !important;
    font-weight: bold;
    border: 1px solid #a1132f;
    border-radius: 5px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: 0.5rem;
}

.btn-lgpd-voltar:hover {
    background-color: #b81a3a;
    color: white !important;
    text-decoration: none;
}