.form-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.modern-input {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

    .modern-input:focus {
        border-color: #4f46e5;
        box-shadow: 0 0 0 2px rgba(79,70,229,0.1);
    }

.modern-btn {
    background: #1e3a8a;
    color: white;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
}

    .modern-btn:hover {
        background: #1e40af;
    }

.form-section {
    margin-bottom: 20px;
}
