/* Page-specific styles for Registration Page */
.content-area {
    padding: 2rem 0;
}

.registration-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.registration-card {
    background: linear-gradient(145deg, #21243b, #1a1e32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: cardFadeIn 0.8s ease-out;
}

.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.registration-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #f3274c, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.registration-header p {
    color: #aaa;
    font-size: 0.95rem;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #aaa;
}

.login-link a {
    color: #f3274c;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .registration-card {
    padding: 1.5rem;
    }
    
    .registration-header h2 {
    font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .registration-card {
    padding: 1.25rem;
    }
}