:root {
    --sage: #87a878;
    --sage-light: #a8c2a5;
    --sage-dark: #6b8a5e;
    --cream: #f9f7f4;
    --warm-gray: #f5f3f0;
    --charcoal: #2d3436;
    --stone: #636e72;
}

body.volunteer-reg-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.input-group-custom:focus-within .input-icon {
    color: var(--sage-dark);
}

.input-group-custom:focus-within input,
.input-group-custom:focus-within select {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(135, 168, 120, 0.1);
}

.btn-sage {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: white;
    transition: all 0.3s ease;
    border: none;
}

.btn-sage:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(135, 168, 120, 0.3);
    color: white;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.reveal-up {
    animation: revealUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--sage-light);
    border-radius: 4px;
}

/* Date picker styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.4);
    cursor: pointer;
}

.password-toggle {
    cursor: pointer;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: var(--sage-dark);
}
