@import url("/static/css/miPaleta.css");

/* Estilos base y fuentes */
body {
    font-family: 'Lato', sans-serif;
    background-color: #FCE7F3;
}
.font-display-title {
    font-family: 'Playfair Display', serif;
}
/* Estilos para la tarjeta de login */
.login-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 28rem;
    overflow: hidden;
}
/* Estilos para los campos de formulario */
.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.875rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-size: 0.95rem;
}
.form-input:focus {
    border-color: #EC4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.25);
    outline: none;
}
/* Mensajes de error */
.alert-danger {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: #FEE2E2;
    border-left: 4px solid #EF4444;
    color: #B91C1C;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}
/* Botón Principal */
.cta-button {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.375rem;
    background-color: #DB2777;
    color: white;
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    background-color: #BE185D;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(190, 24, 93, 0.25);
}
/* Enlaces */
.link-pink {
    color: #DB2777;
    font-weight: 500;
    text-decoration: none;
}
.link-pink:hover {
    color: #BE185D;
    text-decoration: underline;
}