/* SOLO ESTILOS NUEVOS */
    .password-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #6c757d;
    }
    .password-input-container {
        position: relative;
    }
    .btn-full-width {
        width: 100%;
        display: block;
    }
    .login-actions {
        margin-top: 20px;
    }
    /* Estilos personalizados para SweetAlert2 */
.swal2-custom-popup {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    max-width: 500px;
}

.swal2-custom-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.swal2-custom-html {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* Modal Fullscreen */
.modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
}

.modal-fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
}

.modal-fullscreen-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-fullscreen-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-fullscreen-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
}

.modal-fullscreen-close:hover {
    color: #343a40;
}

.modal-fullscreen-body {
    flex: 1;
    overflow: hidden;
}

.modal-fullscreen-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Botón de cerrar personalizado */
.btn-close-custom {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-close-custom:hover {
    background: #c82333;
}