.form-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.form-container {
    max-width: 600px;
    width: 100%;
    background: rgba(13, 27, 42, 0.8);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-container > * {
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.form-header p {
    color: #888;
    font-size: 0.95rem;
}

.mystical-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: #666;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.form-links {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.form-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.form-links a:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.form-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.form-divider span {
    background: rgba(13, 27, 42, 0.9);
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.info-box {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-box strong {
    color: var(--emerald);
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
    }
    
    .form-header h1 {
        font-size: 2rem;
    }
}