/* Register page-specific styles */

.register-container {
    width: 100%;
    max-width: 560px;
    padding: 20px;
}

.register-logo {
    text-align: center;
    margin-bottom: 24px;
}

.register-logo svg {
    width: 48px;
    height: 48px;
}

.register-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 12px;
}

.register-logo p {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
}

.register-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 32px;
}

.register-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}

.btn-row {
    margin-top: 20px;
}

.btn-submit {
    width: 100%;
    padding: 11px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover { background: #2563eb; }
.btn-submit:disabled { background: #93c5fd; cursor: not-allowed; }

.register-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
}

.register-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.register-footer a:hover { text-decoration: underline; }

/* Success state */
.success-icon {
    width: 64px;
    height: 64px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    font-weight: 700;
}

.success-text {
    text-align: center;
}

.success-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.success-text p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.btn-dashboard {
    display: inline-block;
    padding: 11px 24px;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-dashboard:hover { background: #2563eb; }

@media (max-width: 640px) {
    body {
        overflow-y: auto;
        padding-top: 20px;
        align-items: flex-start;
    }
    .register-card { padding: 24px; }
}