/* Estilos para la página de login */
body {
    font-family: 'FSAlbert', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
    height: 100%;
    margin: 0;
}

.login-content {
    height: 100vh;
    display: flex;
    align-items: center;
    min-height: 700px;
}

.bg-login {
    background-image: url('../../../public/images/gerencia2/login/login_fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
}

.panel-login {
    border-top-left-radius: 100px;
    background-color: #f3f4f8;
    height: 100%;
    position: relative;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.login-title{
    font-size: 1.9rem;
    font-weight: 700;
    color: #003554;
}

.login-subtitle{
    font-size: 1rem;
    color: #003554;
}

.panel-login-bg {
    background-image: url('../../../public/images/gerencia2/login/elemento_01.png'), 
                    url('../../../public/images/gerencia2/login/elemento_02.png');
    background-position: 0 0, 100% 100%;
    background-repeat: no-repeat;
    background-size: auto, auto;
    height: 93%;
    padding: 2rem;
    position: relative;
}

.panel-card {
    background-color: transparent;
    max-width: 550px;
    margin: 0 auto;
}

/* Estilos para campos con iconos */
.input-group-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8F9BB3;
    z-index: 5;
    font-size: 1.5rem;
}

.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #e0e2e7;
    padding: 0.5rem 1rem 0.5rem 50px;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    background-color: transparent;
}

.form-control:focus {
    border-color: #003a5c;
    box-shadow: 0 0 0 0.2rem rgba(0, 58, 92, 0.1);
}

.hopeui-btn {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    margin-top: 1rem;
}

.hopeui-btn-orange {
    background: #ff8000;
    color: #fff;
}

.hopeui-btn-orange:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hopeui-btn-orange:disabled,
.hopeui-btn-orange[disabled] {
    background-color: #ffc48a;
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.hopeui-btn-gray {
    background: #e2e2e2;
    color: #a7a7a7;
}

.hopeui-btn-gray:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-check-input:checked {
    background-color: #ff8000;
    border-color: #ff8000;
}

.form-check-label {
    font-size: 0.7rem;
    color: #666;
    display: table-caption;
    min-width: 164px;
}

.link_condiciones, .link_password {
    font-size: 0.85rem;
    color: #ff8000;
    text-decoration: none;
}

.link_condiciones:hover, .link_password:hover {
    text-decoration: underline;
    color: #ff8000;
}

/* Estilos para el pie de página */
.login-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #6c757c;
    padding: 1rem 0;
    font-size: 0.85rem;
    z-index: 1000;
}

.login-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #6c757c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6c757c;
    text-decoration: underline;
}

.copyright {
    color: #6c757c;
}

.sistel-logo {
    max-width: 100px;
    height: auto;
}

/* Estilos para mensajes de error */
.alert-custom {
    background-color: #FFF5F5;
    border-left: 4px solid #F1416C;
    color: #3F4254;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-icon {
    color: #F1416C;
    font-size: 1.5rem;
}

.alert-heading {
    font-weight: 600;
    color: #F1416C;
    margin: 0;
    font-size: 1rem;
}

.alert-message {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-close-custom {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.btn-close-custom:hover {
    opacity: 1;
}

/* Estilos para el botón de soporte */
.hopeui-btn-gray i {
    margin-right: 0.5rem;
}
