/* LOGIN CUSTOM PARA LEGADO PASTELERÍA 
    Paleta: Chocolate (4C2C19), Óxido (9C4421), Mostaza (C5891D), Moca (6A4C32) 
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;600&display=swap');

h2 {
    color: #4C2C19; /* Chocolate */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

p {
    color: #6A4C32; /* Moca */
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

body, html {
    height: 100%;
    background-color: #F9F7F2; /* Fondo crema suave */
    /* Usamos un degradado sutil con los colores de la marca en lugar de estirar el logo */
    background: linear-gradient(135deg, #4C2C19 0%, #6A4C32 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
}

.card-container.card {
    width: 350px;
    padding: 40px 40px;
    border-radius: 10px;
}

/* * Card component - Ajustado para calidez
 */
.card {
    background-color: #FFFFFF;
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 80px;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    border: none;
}

.profile-img-card {
    width: 120px; /* Tamaño optimizado para el logo */
    height: auto;
    margin: 0 auto 15px;
    display: block;
    /* Quitamos el redondeado 50% para que el logo de Legado luzca su diseño original */
}

/* * Form styles
 */
.profile-name-card {
    font-size: 18px;
    font-weight: 600;
    color: #4C2C19; /* Chocolate */
    text-align: center;
    margin: 10px 0 15px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text] {
    height: 44px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #C9A47A; /* Latte */
}

.form-signin .form-control:focus {
    border-color: #C5891D; /* Mostaza */
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(197, 137, 29, 0.6);
}

.btn.btn-signin {
    background-color: #9C4421; /* Óxido */
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    height: 40px;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.btn-signin:hover {
    background-color: #C5891D; /* Cambia a Mostaza al pasar el mouse */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.forgot-password {
    color: #826F48; /* Serrín */
    font-size: 13px;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.forgot-password:hover {
    color: #9C4421; /* Óxido */
    text-decoration: underline;
}