body {
    background-color: white;
    color: #333;
}
.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1c7430;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}
.form-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1c7430;
    font-family: 'Inter', sans-serif;
}
.form-help {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}
.form-section {
    background-color: #f0fff0;
    padding: 1.25rem 2.25rem 1.75rem;
    border-radius: 0.75rem;
    border: 1px solid #d5ecd5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.form-label {
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.required::after {
    content: " *";
    color: red;
}
input, select {
    border-radius: 0.5rem;
    border: 1px solid #cfd8dc;
}
small {
    color: #666;
    font-size: 0.85rem;
}
.btn-primary-green {
    background-color: #1c7430;
    border-color: #1c7430;
}
.btn-primary-green:hover {
    background-color: #145c24;
}

dl, dd {
    margin-bottom: 0.1rem !important;
}
.col-md-6, .col-md-12 {
    margin-bottom: 0.3rem;
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

label {
    margin-bottom: 0.3rem;
}

dl.error {
    color: #dc3545;
}
dl.error input.form-control {
    border-color: #dc3545;
}

span.error {
    color: #dc3545;
}

.font-size-small {
    font-size: small;
}
.password-valid {
    color: green;
}
.password-invalid {
    color: red;
}
.password-neutral {
    color: inherit
}

legend {
    font-family: 'Roboto Black', sans-serif;
}

.form-check-label {
    font-family: 'Roboto', sans-serif;
}

button {
    font-weight: 600;
}

#processing-box {
    padding: 2rem;
    text-align: center;
    display: none;
}

#spinner {
    width: 80px;
    height: 80px;
    margin: 0.5rem auto 1rem;
    border: 4px solid #cceacc;
    border-top: 4px solid #4caf50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-message {
    font-size: 1.3rem;
    color: #2e7d32;
}

.error-message {
    font-size: 1.3rem;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
    display: none;
}

.confirmation-box {
    background-color: #f0fdf4;
    border: 1px solid #cceacc;
    border-radius: 8px;
    padding: 2rem;
    font-family: system-ui, sans-serif;
    color: #2e7d32;
    max-width: 700px;
    margin: 2rem auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.confirmation-box h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dashboard-info {
    background-color: #e6f4e6;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.verification-section h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.verification-list dt {
    font-weight: bold;
    margin-top: 1rem;
    color: #2e7d32;
}

.verification-list dd {
    margin-left: 1rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #e0e0e0;
}

