/* signup.css — Sign Up page specific styles */

body { display: block; }

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

.auth-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0,0,0,.14);
    padding: 40px 40px 32px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.back-link {
    align-self: flex-start;
    font-size: .85rem;
    color: var(--muted);
    transition: color .2s;
}

.back-link:hover { color: var(--orange); }

.auth-logo { height: 52px; width: auto; }

.auth-title {
    color: var(--purple);
    font-size: 1.8rem;
    margin-top: -4px;
}

.auth-welcome {
    background: #e8faf2;
    color: #2fa562;
    font-weight: 700;
    font-size: .9rem;
    padding: 8px 24px;
    border-radius: 20px;
    letter-spacing: .04em;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full { width: 100%; }

.form-label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}

.form-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0 14px;
    font-size: .93rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    transition: border-color .2s;
    outline: none;
}

.form-input:focus { border-color: var(--orange); }

.refund-notice {
    background: #fff5f5;
    border: 1.5px solid #fecaca;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.refund-icon { font-size: 1.1rem; flex-shrink: 0; }

.refund-notice p {
    font-size: .88rem;
    line-height: 1.6;
    color: #444;
}

.red { color: #e53e3e; font-weight: 700; }

.agree-row {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}

.auth-btn {
    width: 100%;
    height: 46px;
    background: #42c279;
    border: none;
    border-radius: 24px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: 'DM Sans', sans-serif;
    margin-top: 4px;
}

.auth-btn:hover { background: #2fa562; transform: scale(1.02); }

.auth-divider {
    color: var(--muted);
    font-size: .88rem;
    text-decoration: underline;
}

.auth-switch {
    color: var(--muted);
    font-size: .9rem;
}

.auth-link {
    color: #42c279;
    font-weight: 700;
}

.auth-link:hover { text-decoration: underline; }

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