﻿/* RESET BÁSICO */
body {
    background-color: #f8f9fa;
    color: #323232;
    font-family: system-ui, -apple-system, sans-serif;
}

/* TÍTULOS */
.page-title {
    text-align: center;
    font-weight: 700;
    color: #323232;
    margin: 3rem 0 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

/* CARDS */
.surface-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* INPUTS */
.form-pill {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #ced4da;
    padding: 0.65rem 1rem;
    color: #323232;
    background-color: #ffffff;
}

/* LABELS */
.section-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #323232;
}

/* BOTONES */
.btn-primary-pill {
    background-color: #4c6ef5;
    border: none;
    color: white;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
}

    .btn-primary-pill:hover {
        background-color: #3b5bdb;
    }

.btn-secondary-pill {
    background-color: #e9ecef;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
}

.btn-outline-pill {
    border: 1px solid #ced4da;
    border-radius: 50px;
    background: transparent;
}

/* UTILIDADES */
.full-width {
    width: 100%;
}
