/* Registration Page Styles */

.register-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 2rem;
}

.register-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    color: var(--accent-blue-bright);
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

.register-header p {
    color: var(--text-secondary);
    margin: 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #f44336;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    border: 1px solid var(--accent-blue-bright);
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--accent-blue-bright);
    box-shadow: 0 0 20px var(--glow-blue);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.login-link a {
    color: var(--accent-blue-bright);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.approval-notice {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #ff9800;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .form-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .register-container {
        padding: 1rem;
        margin: 2rem auto;
    }
    
    .register-box {
        padding: 1.5rem;
    }
}
