/* Auth register page unique styles */

.auth-register-page {
    padding-top: 80px;
}

.bg-gray-50-page {
    background: #f9fafb;
    min-height: 100vh;
}

.card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 32px;
}

.reg-card {
    width: 100%;
    max-width: 384px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    padding: 32px;
}

.reg-card h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.03em;
    text-align: center;
    margin: 0 0 4px;
}

.reg-card .subtitle {
    font-size: .875rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

.btn-create {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: #fff;
    background: linear-gradient(to right, #f97316, #ea580c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background .15s;
    margin-top: 24px;
}

.btn-create:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.btn-create:disabled {
    opacity: .7;
    cursor: default;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    font-size: .75rem;
    color: #9ca3af;
    font-weight: 500;
}

.btn-google {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s;
}

.btn-google:hover {
    background: #f9fafb;
}

.btn-google:disabled {
    opacity: .7;
    cursor: default;
}

.space-y-4 > * + * {
    margin-top: 16px;
}
