﻿/* =========================
   AUTH LAYOUT (Login/Register)
   ========================= */

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont;
}

/* Card */
.card {
    border-radius: 12px;
}

    /* Título */
    .card h4 {
        font-weight: 600;
    }

/* Inputs */
.form-control {
    border-radius: 8px;
    padding: 10px 12px;
}

/* Botón principal */
.btn-primary {
    background-color: #5170FF; /* Color base Menteo (ejemplo) */
    border: none;
}

    .btn-primary:hover {
        background-color: #162d66;
    }

/* Links */
a {
    color: #1f3c88;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Validaciones */
.text-danger {
    font-size: 0.875rem;
}
