.aau-simple-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}
.aau-simple-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.aau-simple-header {
    background-color: #0B1B3D;
    color: #fff;
    padding: 25px;
    text-align: center;
}
.aau-simple-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 8px 0;
}
.aau-simple-header p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}
.aau-simple-body {
    padding: 30px;
}
.aau-simple-form input,
.aau-simple-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #1F2937;
    background-color: #f8fafc;
    box-sizing: border-box;
}
.aau-simple-form input:focus,
.aau-simple-form select:focus {
    outline: none;
    border-color: #0B1B3D;
    background-color: #fff;
}
.aau-sf-btn {
    width: 100%;
    background-color: #D4AF37;
    color: #0B1B3D;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.aau-sf-btn:hover {
    background-color: #b8972f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.aau-sf-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.aau-sf-message {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}
.aau-sf-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.aau-sf-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.aau-sf-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 20px 0 0 0;
}
