.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), #4a5568;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 24px;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.auth-page {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: #f7f9fa;
}

.auth-container {
    background: #fff;
    padding: 48px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.auth-container h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1c1d1f;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1c1d1f;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d7dc;
    border-radius: 4px;
    font-size: 16px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #a435f0;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6a6f73;
}

.auth-switch a {
    color: #a435f0;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}