body.login-page {
    background: url('../img/template/back1.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-img {
  width: 140px !important;     /* fuerza el tamaño */
  height: auto !important;
  display: block;
  margin: 0 auto 10px auto;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(85, 73, 73, 0.7);
}

.login-wrapper {
    width: 100%;
    max-width: 380px;
    z-index: 2;
}

.login-modal {
    background: #330101;
    /* fondo sólido oscuro */
    border-radius: 12px;
    padding: 30px;
    color: #fff;
}

.login-logo img {
    width: 70px;
    margin-bottom: 10px;
}

.login-title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    border-radius: 30px;
    padding-left: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    z-index: 1;
}

.form-control::placeholder {
    color: #ccc;
}

.icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    z-index: 2;
    pointer-events: none;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    z-index: 2;
}

.btn-login {
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #c0c0c0, #e0e0e0);
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #dcdcdc, #f5f5f5);
    transform: scale(1.05);
}

/* Recordarme personalizado */
.recordarme-wrapper label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #eee;
    cursor: pointer;
}

/* iCheck estilo plateado */
.icheckbox_square-blue {
    background: linear-gradient(135deg, #c0c0c0, #e0e0e0) !important;
    border: 1px solid #aaa !important;
    border-radius: 4px !important;
    position: relative;
}

.icheckbox_square-blue.checked {
    background: linear-gradient(135deg, #dcdcdc, #f5f5f5) !important;
    border-color: #999 !important;
}

.icheckbox_square-blue.checked::after {
    content: "\f00c";
    font-family: FontAwesome;
    color: #333;
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 3px;
}