/* Hoja de estilo usada por pantalla de Bienvenida a la Aplicación */

body#page-bienvenida {
    padding-top: 0 !important;
    min-height: 100vh;
    background: linear-gradient(150deg, #003049 0%, #005080 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hero */
.bienvenida-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px 40px;
    position: relative;
}
.bienvenida-hero__circulo-1 {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.bienvenida-hero__circulo-2 {
    position: absolute;
    bottom: 10px;
    left: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.logo-bienvenida {
    width: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 6px 16px rgba(0, 0, 0, 0.35));
}
.titulo-bienvenida {
    font-family: "Montserrat";
    font-size: 26px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}
.parrafo-bienvenida {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 22px;
    margin-bottom: 0;
}

/* Card de login */
.bienvenida-card {
    background: white;
    border-radius: 28px 28px 0 0;
    padding: 32px 24px 52px;
    box-shadow: 0px -6px 32px rgba(0, 0, 0, 0.18);
}
.bienvenida-card__titulo {
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: 700;
    color: #c11b29;
    margin-bottom: 24px;
}

/* Inputs */
body#page-bienvenida .form-label {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
body#page-bienvenida .form-control {
    border-color: #e0e0e0 !important;
    border-radius: 10px !important;
    height: 50px;
    font-family: "Montserrat";
    font-size: 14px;
    color: #003049;
    padding-left: 14px;
}
body#page-bienvenida .form-control:focus {
    border-color: #003049 !important;
    box-shadow: 0 0 0 3px rgba(0, 48, 73, 0.1) !important;
}
body#page-bienvenida .form-control::placeholder {
    color: #bbb;
    font-weight: 400;
}

/* Campo contraseña con ícono */
.input-password-wrapper {
    position: relative;
}
.input-password-wrapper .form-control {
    padding-right: 50px;
}
.btn-toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #aaa;
    display: flex;
    align-items: center;
    line-height: 1;
}
.btn-toggle-password svg {
    width: 20px;
    height: 20px;
}

/* Mensaje de error */
.login-error {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 500;
    color: #c11b29;
    background: #fdf0f1;
    border: 1px solid #f5c2c5;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

/* Botones */
.btn-acceder {
    display: flex;
    width: 100%;
    height: 52px;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 12px;
    background: #c11b29;
    color: white;
    border: none;
    margin-bottom: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-acceder:hover,
.btn-acceder:active {
    background: #a0151f;
    color: white;
}
.btn-instalacion {
    display: flex;
    width: 100%;
    height: 48px;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
    color: #003049;
    border: 1.5px solid #003049;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    transition: background 0.2s;
}
.btn-instalacion:hover {
    background: #f0f4f6;
}
