/* Signup Page Styles */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-container.wide {
    max-width: 550px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.auth-logo h1 {
    font-size: 22px;
    margin-bottom: 5px;
}

.auth-logo p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.auth-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.auth-card .card-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.form-section h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: var(--surface);
    padding: 0 15px;
    position: relative;
    color: var(--text-secondary);
    font-size: 13px;
}

.auth-link {
    text-align: center;
    font-size: 14px;
}

.page-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .auth-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .auth-page {
        padding: 20px 15px;
    }
    .auth-card {
        padding: 20px 15px;
    }
}
