:root {
    --primary: #8B7355;
    --secondary: #D4B896;
    --accent: #5D8A66;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcf9f5;
    color: #333;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

.form-container {
    background: linear-gradient(to bottom, #ffffff, #fefbf7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--primary);
    font-weight: 500;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--secondary);
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #7a6348;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.2);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.radio-option {
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
}

.radio-option:hover {
    border-color: var(--primary);
}

.radio-option.selected {
    border-color: var(--primary);
    background-color: rgba(139, 115, 85, 0.08);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.15);
    transform: translateY(-2px);
}

.radio-option.selected .fa-user,
.radio-option.selected .fa-user-friends {
    color: var(--primary);
}

.radio-option.selected span {
    color: var(--primary);
    font-weight: 600;
}

/* Pulse animation for selection */
@keyframes pulseSelect {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.radio-option.selected {
    animation: pulseSelect 0.3s ease;
}

.radio-input:checked + .radio-label {
    color: var(--primary);
    font-weight: 600;
}

.header-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4B896' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floral-border {
    position: relative;
}

.floral-border::before {
    content: "❦";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 24px;
    background-color: #fcf9f5;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .divider {
        margin: 1rem 0;
    }
    
    .heading-font {
        font-size: 1.75rem;
    }
}