/* Ancient Form Styles */
.ancient-form-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.ancient-form-card {
    background: var(--glass-bg);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    color: var(--text-main);
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

.ancient-form-title {
    color: var(--text-main) !important;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ancient-form-group {
    margin-bottom: 1.5rem;
}

.ancient-form-label {
    color: var(--text-main) !important;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ancient-form-control {
    background-color: rgba(255,255,255,0.08) !important;
    border: none !important;
    border-radius: 999px !important;
    color: var(--text-main) !important;
    box-shadow: 0 2px 8px rgba(92, 160, 242, 0.08) !important;
    padding: 0.9rem 1.3rem !important;
    font-size: 1.1rem !important;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s !important;
}

.ancient-form-control:focus {
    background: linear-gradient(90deg, var(--button-blue) 0%, var(--accent-blue) 100%) !important;
    color: var(--sky-white) !important;
    box-shadow: 0 0 0 0.2rem rgba(92, 160, 242, 0.18) !important;
}

.ancient-form-control::placeholder {
    color: rgba(180, 200, 220, 0.5) !important;
}

.ancient-form-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.ancient-form-btn {
    background: linear-gradient(90deg, var(--button-blue) 0%, var(--accent-blue) 100%);
    color: var(--sky-white);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(92, 160, 242, 0.18);
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
    margin-top: 1rem;
}

.ancient-form-btn:hover {
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--button-blue) 100%);
    color: var(--navy);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 24px rgba(92, 160, 242, 0.22);
}

.ancient-form-divider {
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    height: 2px;
    margin: 2rem 0;
    border-radius: 1px;
}

.ancient-form-image {
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(24, 90, 219, 0.2);
    transition: all 0.3s ease;
}

.ancient-form-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(24, 90, 219, 0.3);
}

/* Form Validation Styles */
.validation-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.input-validation-error {
    border-color: #ff6b6b !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ancient-form-card {
        padding: 1.5rem;
    }

    .ancient-form-title {
        font-size: 1.75rem;
    }

    .ancient-form-image {
        margin-top: 2rem;
    }
}

/* Donation Form Specific Styles */
.donation-amount-btn {
    background: rgba(10, 35, 66, 0.9);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-amount-btn:hover,
.donation-amount-btn.active {
    background: var(--accent-blue);
    color: var(--sky-white);
    transform: translateY(-2px);
}

.donation-amount-btn.active {
    box-shadow: 0 0 15px rgba(24, 90, 219, 0.2);
}

/* Login/Register Form Layout */
.auth-form-container {
    display: flex;
    min-height: calc(100vh - 200px);
    align-items: center;
    padding: 2rem 0;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Form Links */
.ancient-form-link {
    color: var(--text-main) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ancient-form-link:hover {
    color: var(--button-blue);
    text-decoration: underline;
} 