/* Registration Page Styles */
body.bg-light {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f7fa;
}

.registration-card {
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.registration-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b33 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.registration-body {
    padding: 2rem;
    background-color: white;
}

.registration-body .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.registration-body .form-control {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.registration-body .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.25);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b33 100%);
    border: none;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
    color: var(--text-light);
}

.btn-register:hover {
    box-shadow: 0 4px 8px rgba(45, 90, 39, 0.2);
    background: linear-gradient(135deg, #3a6b33 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.password-help {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

