body {
    font-family: 'Poppins', sans-serif;
    background: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #1e293b;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tipo-container {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.btn-tipo {
    flex: 1;
    padding: 10px 5px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    transition: 0.3s;
}

.btn-tipo.active {
    background: white;
    color: #2563eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: #2563eb;
}

.address-consent-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    color: #1e40af;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 14px;
    padding: 10px 12px;
}

.btn {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    background: #1d4ed8;
}

.msg {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.msg.success {
    background: #dcfce7;
    color: #166534;
}

.msg.error {
    background: #fee2e2;
    color: #991b1b;
}

a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
